forum

Home / DeveloperSection / Forums / How to Pass object to another activity in android?

How to Pass object to another activity in android?

Allen Scott 2058 19-Nov-2014

I have found this way to do this

Student student = new Student (18,"Zar E Ahmer");
Intent i = new Intent(this, B.class);
i.putExtra("studentObject", student);
startActivity(i);

The problem is that if the object changed in the first activity No change took place in the another activity. I thought how to make it like a constructor that no copy of the object is pass but the object it self.


Updated on 19-Nov-2014

Can you answer this question?


Answer

1 Answers

Liked By